home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_11_07
/
1107106b
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1993-04-28
|
283 b
|
17 lines
// width.cpp: Control width of input strings
#include <iostream.h>
#include <iomanip.h>
main()
{
char s1[10], s2[3], s3[20];
cin >> setw(10) >> s1
>> setw(3) >> s2
>> s3;
cout << s1 << ',' << s2 << ',' << s3 << endl;
return 0;
}